.stats-container {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.stats-header {
    margin-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 6px;
}
.stats-title {
    color: var(--perfil-accent-secondary);
    font-size: 10px;
    letter-spacing: 1px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.stats-card {
    text-align: center;
    padding: 10px;
    background: #050505;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
}
.stats-icon {
    font-size: 20px;
    margin-bottom: 6px;
}
.stats-value {
    font-size: 16px;
    font-weight: bold;
    color: var(--perfil-accent);
    font-family: monospace;
}
.stats-label {
    font-size: 8px;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.progresso-global {
    margin-top: 12px;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    margin-bottom: 6px;
}
.stats-progress-bar {
    width: 100%;
    height: 6px;
    background: #111;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}
.stats-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--perfil-accent), var(--perfil-accent-secondary));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
    box-shadow: 0 0 5px var(--perfil-accent);
}
.stats-modulos-count {
    font-size: 9px;
    color: #555;
    margin-top: 6px;
    text-align: right;
}